Skip to content

Instantly share code, notes, and snippets.

@benob
benob / 9front-rpi4-wifi.sh
Last active March 23, 2026 20:17
9front on raspberry pi 4 w/ wifi
# based on https://github.com/AshyIsMe/plan9-rpi
############# on linux:
# download latest version of 9front for rpi3/4
# adjust version number to get the available version
wget http://9front.org/iso/9front-10522.pi3.img.gz
gunzip 9front-10522.pi3.img.gz
# copy data to memory card (at least 2GB), replace /dev/mmcblk0 with the path to your memory card
@burkeholland
burkeholland / ainstall.md
Last active March 23, 2026 20:15
Ultralight Orchestration

Ultralight Orchestration

A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.

Instructions

Install all agents listed below into VS Code Insiders...

Title Type Description
@Cur10s1tyByt3
Cur10s1tyByt3 / ActiveDir_Network_Services_Exploitation_Resources.md
Created March 14, 2025 10:19
ActiveDir/NetworkServices Exploitation Resources:

Active Directory / Network Services Exploitation Resources:

## Codebase Reality Check — Ground Truth Audit
**Purpose:** Establish what IS implemented vs what was PLANNED.
**Rule:** No assumptions. No inference from docs. Evidence from code + runtime only.
**Anti-pattern:** Reading the PRD and assuming it matches reality. It doesn't until proven.
---
### Source of truth hierarchy

GENERAL TODO:

  • The examples are all over the place. They need to be more consistent.
  • Check that x-archive-queue-derive header. I just skimmed it and it doesn't seem right.
  • Investigate getting an "ias3support@archive.org" address for support requests
  • Some of the standard metadata fields are repeatable, some are not. State this in the descriptions.
  • Excellent Hank idea: Quick Start (TL;DR) section to avoid all the gory details
  • Dang, but this damn thing is hard to read. Will that get better when it gets converted to the PHP wrapper? I have my doubts. May need a some quick George love to give tips for better readability.
  • All the other 'foo' (read: green) bits below
@orneryd
orneryd / claudette-agent.installation.md
Last active March 23, 2026 20:05
Claudette coding agent (System Prompt, Preamble, Chatmode, etc…) built especially for free-tier models like chatGPT-3/4/5+ to behave more similar to Claude. Claudette-auto.md is the most structured and focuses on autonomy. *Condensed* nearly the same but smaller token cost for smaller contexts, *Compact* is for mini contexts. Memories file suppo…
@MCJack123
MCJack123 / UTFString.lua
Last active March 23, 2026 20:04
UTF string type for Lua 5.3
local expect = require "cc.expect"
local UTFString = {}
local UTFString_mt = {__index = UTFString, __name = "UTFString"}
local function toUTF8(s)
-- convert from ANSI if the string is invalid in UTF-8
local ss = ""
local iter, invar, i = utf8.codes(s)
local ok, c
@natelandau
natelandau / .bash_profile
Last active March 23, 2026 19:51
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@vielhuber
vielhuber / script.js
Last active March 23, 2026 19:43
anton app coin hack #js
coins = 42,
sourceId = localStorage.getItem('sourceId').split('"').join(''),
deviceLogId = localStorage.getItem('deviceLogId').split('"').join(''),
users = JSON.parse(localStorage.getItem('users'));
users.forEach(users__value => {
fetch('https://logger-lb-5.anton.app/events', {
method: 'POST',
'headers': { 'Content-Type': 'application/json' },
body: JSON.stringify({
"events":[{"event":"adjustCoins","value":coins,"src":sourceId,"created":(new Date()).toISOString()}],